Skip to main content

Web Connectors

These are connectors used by web applications not running on the device. This is useful for cases where the data is in the cloud or a UI is not necessary on the device.

The exact interface for this feature is in internal review.

API

Registering a public ReST service

Registering a public ReST service is pretty straight forward. Ari understands the OpenAPI v3 spec and will register a function for each of the given paths.

The exact interface for this feature is in internal review.

Registering a private ReST service

Registering a ReST service that requires authentication is similar to the public version. The only difference is a token is specified that allows access to the service. Note that the same token will be used by all calls to the service. If the service requires an individual token per user, check out Registering an individual ReST service.

The exact interface for this feature is in internal review.

Registering an individual ReST service

An individual ReST service is a service that requires each user to have their own token for authentication and interaction.

The exact interface for this feature is in internal review.